home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 November / Chip_2003-11_cd1.bin / program / delphi / kompon / BalmsoftPolyglot.exe / {app} / Demos / Delphi 5-7 / bsPolyglotDemo.dpr < prev    next >
Text File  |  2003-08-07  |  389b  |  16 lines

  1. program bsPolyglotDemo;
  2.  
  3. uses
  4.   Forms,
  5.   bsPolyglotDemoFrm in 'bsPolyglotDemoFrm.pas' {bsPolyglotDemoForm},
  6.   bsPolyglotDemoMdl in 'bsPolyglotDemoMdl.pas' {DataModule1: TDataModule};
  7.  
  8. {$R *.res}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TDataModule1, DataModule1);  
  13.   Application.CreateForm(TbsPolyglotDemoForm, bsPolyglotDemoForm);
  14.   Application.Run;
  15. end.
  16.